377174
@@ -75,8 +75,9 @@
public class VersionModel implements Serializable, ProtobufMessageHandler {
       System.getProperty("os.version") + ' ' +
       System.getProperty("os.arch");
     serverVersion = context.getServerInfo();
-    jerseyVersion = ServletContainer.class.getClass().getPackage()
-      .getImplementationVersion();
+    jerseyVersion = ServletContainer.class.getPackage().getImplementationVersion();
+    // Currently, this will always be null because the manifest doesn't have any useful information
+    if (jerseyVersion == null) jerseyVersion = "";
   }
 
   /**
